-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(PA-5999) modify configs for sles11-x86_64 #782
Conversation
configs/platforms/sles-11-x86_64.rb
Outdated
@@ -1,8 +1,8 @@ | |||
platform "sles-11-x86_64" do |plat| | |||
plat.servicedir "/etc/init.d" | |||
plat.servicedir "/usr/lib/systemd/system" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe SLES 11 still uses the older init style, not systemd
tomblike-wait:~ # cat /etc/os-release
NAME="SLES"
VERSION="11.4"
VERSION_ID="11.4"
PRETTY_NAME="SUSE Linux Enterprise Server 11 SP4"
ID="sles"
ANSI_COLOR="0;32"
CPE_NAME="cpe:/o:suse:sles:11:4"
tomblike-wait:~ # ls -d /etc/init.d/rc*
/etc/init.d/rc /etc/init.d/rc1.d /etc/init.d/rc3.d /etc/init.d/rc5.d /etc/init.d/rcS.d
/etc/init.d/rc0.d /etc/init.d/rc2.d /etc/init.d/rc4.d /etc/init.d/rc6.d
tomblike-wait:~ # ls /usr/lib/systemd
ls: cannot access /usr/lib/systemd: No such file or directory
configs/platforms/sles-11-x86_64.rb
Outdated
plat.defaultdir "/etc/sysconfig" | ||
plat.servicetype "sysv" | ||
plat.add_build_repository "http://osmirror.delivery.puppetlabs.net/sles-11-deps-x86_64/sles-11-deps-x86_64.repo" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we want to keep this so that we install the packages below, like gcc
, from our internal mirror.
You can drop the Also I think you'll need to do something like this to build ruby 2.7.x using miniruby joshcooper@31ba584 |
@amitkarsale This looks to have been superseded by #787, can we close this one? |
Resolved under #788 |
modified configs for sles11-x86_64. Please review for
plat.add_build_repository
too.